home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Jasc Software, Inc.',
- 'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc. All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_ColorAdjustBrightnessContrast():
- return {
- 'BrightnessContrast': {
- 'Brightness': -70,
- 'Contrast': 0
- }
- }
-
- def Do(Environment):
- # Color Adjust Brightness Contrast
- App.Do( Environment, 'ColorAdjustBrightnessContrast', Preset_ColorAdjustBrightnessContrast())
-
-